﻿:root {
    --color-background: #0d0d0d;
    --color-accent: #b48a5a;
    --color-accent-hover: #a0784f;
    --color-text-light: white;
    --color-border-light: rgba(253, 253, 253, 0.3);
    --color-shadow: rgba(0, 0, 0, 0.4);
    --font-main: "Nunito", sans-serif;
    --black: #000000;
    --white: #ffffff;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-light);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

p {
    line-height: 24px;
    font-family: "Nunito", sans-serif;
}
.text-danger{
    color:red;
    font-size:0.8rem;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.hidden {
    display: none !important;
}
.ellipsis-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@font-face {
  font-family: 'NexaRustSlabB';
  src: url('font/NexaRustSlab-BlackShadow01.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NexaRustSlab';
  src: url('font/NexaRustSans-Black.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* SweetAlert-Inspired Custom Alert Box */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    z-index: 99999;
    max-width: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInScale 0.4s ease-in-out;
}

.success-alert {
    border-left: 6px solid #4CAF50;
}

.error-alert {
    border-left: 6px solid #F44336;
}

.alert-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.alert-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.alert-message {
    text-align: center;
    color: #555;
    line-height: 1.5;
}

.alert-close {
    margin-top: 15px;
    background-color: #eee;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color:green;
    border:1px solid green;
    transition: background-color 0.2s ease;
}

    .alert-close:hover {
        background-color: #ddd;
    }

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


/* === HEADER STYLES === */
.container-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}

.border-bottom {
  border-bottom: 1px solid var(--color-border-light);
}

.logo img {
/*   padding:8px;*/
  height: 120px;
}
.logo-2 img {
/*    padding: 8px;*/
    height: 90px !important;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-text-light);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone a {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.quote-button {
  background-color: var(--color-accent);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.quote-button:hover {
  background-color: var(--color-accent-hover);
  color: var(--white);
}

/* === HERO HEADER === */
.hero-header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  background: transparent;
  transition: opacity 0.3s ease;
}

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--color-border-light);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
}

.sticky-header.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Breadcrumb  */
.breadcrumb-hero {
  position: relative;
  height: 400px;
  background: url('images/temp images/bread-bg.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.breadcrumb-container {
  margin-top: 70px;
  position: relative;
  z-index: 2;
  padding: 20px;
  color: var(--color-text-light);
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.breadcrumb-nav a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  color: var(--color-accent-hover);
}

.breadcrumb-nav span {
  color: var(--color-text-light);
  opacity: 0.6;
}

.breadcrumb-title {
  font-family: 'NexaRustSlab', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-text-light);
}

/* === HERO SECTION === */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/SK Timber Hero Img.webp') no-repeat center center/cover;
  transform: scale(1);
  animation: slowZoom 5s ease-in-out forwards;
  z-index: -1;
}

/* Zoom Animation */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'NexaRustSlab', sans-serif;
  font-size:2.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height:1.3;
  color: var(--white);
}

.hero-content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--white);
  text-align:center;
}

.hero-button {
  background-color: var(--color-accent);
  padding: 10px 20px;
  border-radius: 2px;
  font-weight: 600;
}

.hero-button:hover {
  background-color: var(--color-accent-hover);
  color: var(--white);
}

/* === Scroll Indicator === */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.scroll-indicator span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.8;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* === Mouse Icon === */
.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-light);
  border-radius: 14px;
  margin: 0 auto;
  position: relative;
  opacity: 0.6;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-text-light);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* === Animation for Wheel === */
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(8px);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* === HERO ANIMATION === */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === about Section === */
.services-section {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
}

.section-subtitle {
    width:100%;
    position: relative;
    display: inline-block;
    padding: 0.5rem;
    font-family: "Bungee", sans-serif;
    font-size: 1rem;
    text-align: center;
    color: var(--color-accent);
    letter-spacing: 1px;
    z-index: 1;
}

.section-title {
  /*  font-size: 2rem;*/
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'NexaRustSlab', sans-serif;
}

/* === Service Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.abt-desc {
    text-align:center;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* === Individual Cards === */
.service-card {
  background-color: var(--white);
  color: var(--color-background);
  padding: 20px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid var(--color-accent);
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card .icon {
  margin-bottom: 20px;
}

.service-icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
}

.dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 3px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* Product Section  */
.products-section {
    background-color: #ffffff;
    background-image: radial-gradient(var(--color-accent) 0.8px, transparent 0.8px);
    background-size: 20px 20px;
    background-repeat: repeat;
    text-align: center;
}

.p-desc {
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    color: var(--black);
    margin-bottom: 25px;
}

.p-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.p-service-card {
    text-align:start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--color-shadow);
    transition: 0.2s;
    position: relative;
    z-index: 1;
    color: white;
    overflow: hidden;
}

    .p-service-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--color-accent);
        opacity: 0.05;
        transition: 0.2s;
        z-index: 1; /* Stays behind content but above ::after */
    }

    .p-service-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Dark overlay */
        z-index: 0;
    }

    /* Ensures content stays above overlay */
    .p-service-card > * {
        position: relative;
        z-index: 2;
    }
        .p-service-card:hover::before {
            height: 100%;
        }


.p-service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.p-service-icon img {
    height: 50px;
    width: 50px;
}

.p-service-number {
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
}

.p-service-title {
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.p-service-divider {
    width: 50px;
    height: 3px;
    background-color: var(--color-accent);
    margin-bottom: 10px;
    transition: 0.2s;
}

.p-service-card:hover .p-service-divider {
    width: 80px;
}

.p-service-description {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 15px;
}

.p-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
    position: relative;
}

    .p-read-more::after {
        content: "→";
        margin-left: 8px;
        transition: 0.2s;
    }

    .p-read-more::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-accent);
        transition: 0.2s;
    }

.p-service-card:hover .p-read-more {
    color: var(--color-accent);
}

    .p-service-card:hover .p-read-more::after {
        transform: translateX(5px);
    }

    .p-service-card:hover .p-read-more::before {
        width: calc(100% - 20px);
    }

/*    More Products */
.timber-products-container {
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timber-products-wrapper {
    width: 100%;
    position: relative;
}

.timber-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap:20px;
    margin-top: 25px;
}

.timber-product-card {
    border: 1px dotted var(--color-accent-hover);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.timber-product-image {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .timber-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.timber-product-card:hover .timber-product-image img {
    transform: scale(1.05);
}

.timber-product-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--color-accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timber-product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.timber-product-description {
    font-size: 15px;
    color: rgba(17, 17, 17, 0.8);
    line-height: 1.6;
}

/*Why Choose Us Section  */
.timber-why-choose-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-desc {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  color: var(--black);
  margin-bottom: 20px;
}

.timber-why-choose-wrapper {
  width: 100%;
  position: relative;
}

.timber-section-header {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}

.timber-section-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.timber-section-subtitle::before,
.timber-section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--color-background);
}

.timber-section-subtitle::before {
  left: -80px;
}

.timber-section-subtitle::after {
  right: -80px;
}

.timber-section-title {
  font-family: 'NexaRustSlab', sans-serif;
  /*  font-size: 2rem;*/
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.timber-grid-layout {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.timber-features-left,
.timber-features-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timber-feature-card {
  border: 1px dotted var(--color-accent-hover);
  border-radius: 20px;
  padding: 15px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.timber-feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent);
  box-shadow: 0 1px 5px var(--color-shadow);
}

.timber-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--white);
  transition: all 0.3s ease;
}

.timber-feature-card:hover .timber-feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(180, 138, 90, 0.3);
}

.timber-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
  line-height: 1.3;
}

.timber-feature-description {
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.8);
    line-height: 1.6;
}

.timber-central-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.timber-central-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.timber-central-image:hover img {
  transform: scale(1.05);
}

.timber-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(180, 138, 90, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timber-central-image:hover .timber-image-overlay {
  opacity: 1;
}

.timber-image-badge {
  background: var(--color-accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timber-decorative-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.timber-decorative-circle {
  position: absolute;
  border: 2px solid rgba(180, 138, 90, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.timber-decorative-circle:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
}

.timber-decorative-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -150px;
  animation-direction: reverse;
}

.timber-decorative-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 20px;
  animation-duration: 15s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Video Section  */
.video-section {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  display: block;
}

.video-container {
  position: relative;
  cursor: pointer;
}

.video-overlay-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  height: fit-content;
  background-color: rgba(0, 0, 0, 0.2);
}

.video-title {
  font-family: 'NexaRustSlab', sans-serif;
    font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.video-subtext {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.play-icon {
  position: absolute;
  top: 60%;
  left: 50%;
  font-size: 4rem;
  color: var(--color-text-light);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: 0.3s ease;
}

.video-frame {
  width: 100%;
  height: 85vh;
  display: none;
  border: none;
}

.video-container.active .video-thumbnail,
.video-container.active .play-icon {
  display: none;
}

.video-container.active .video-frame {
  display: block;
}

/* Blog Section  */
.blog-title {
  text-align: center;
  /*  font-size: 2rem;*/
  margin-bottom: 10px;
  color: var(--black);
  font-family: 'NexaRustSlab', sans-serif;
}

.blog-subtitle {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black);
}

.swiper-slide {
  overflow: hidden;
  transition: transform 0.3s;
}

.swiper-slide:hover {
  transform: translateY(-2px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-accent);
  border-radius: 10px;
  overflow: hidden;
  background: var(--black);

}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
}

.blog-content h3 {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.4;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-accent);
}

/*Testimonial Section  */
.testimonial-wrapper {
  background-color: var(--black);
}

.testimonial-heading {
  text-align: center;
  /*  font-size: 2rem;*/
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'NexaRustSlab', sans-serif;
}

.testimonial-swiper {
  width: 100%;
  padding: 20px 10px 5px 10px;
  margin: auto;
}

.testimonial-slide {
  background-color: var(--black);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px var(--color-shadow);
  transition: transform 0.3s ease;
}

.testimonial-slide:hover {
  transform: scale(1.01);
  border-color: var(--color-accent);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-message {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.testimonial-info {
  font-size: 0.95rem;
}

.testimonial-name {
  font-weight: bold;
  color: var(--color-accent);
}

.testimonial-nav-next,
.testimonial-nav-prev {
  color: var(--color-accent);
}

.testimonial-pagination .swiper-pagination-bullet {
  background: var(--color-border-light);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--color-accent);
}
/*gallery section */
.gallery-wrapper {
    background-color: #fff;
    text-align: center;
    position: relative;
}

.gallery-heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.gallery-slide {
    padding: 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .gallery-image:hover {
        transform: scale(1.03);
    }

/* Modal Styles */
.g-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

.g-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

.g-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
.g-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background-color: rgba(0,0,0,0.3);
    border: none;
    font-size: 40px;
    padding: 0 15px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

    .g-modal-nav:hover {
        background-color: rgba(0,0,0,0.6);
    }

.g-prev {
    left: 20px;
}

.g-next {
    right: 20px;
}
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Section  */
.contact-section {
  background-image: url('images/temp images/temp (4).webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-section-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-section-subtitle {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-section-title {
    font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: 'NexaRustSlab', sans-serif;
}

.contact-section-btn {
  width: fit-content;
  background-color: var(--color-accent);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 0.9rem;
  display:none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-section-btn:hover {
  background-color: var(--color-accent-hover);
}

.contact-section-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
}

.contact-section-left {
  flex: 1 1 45%;
  z-index: 2;
}

.eco-form-box {
  flex: 1 1 40%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.eco-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-accent-hover);
}

.eco-form-wrapper {
  width: 100%;
}

.eco-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.eco-form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.eco-form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}

.eco-form-group input,
.eco-form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-main);
}

.eco-form-group textarea {
  resize: vertical;
}
    .eco-form-group input:focus,
    .eco-form-group textarea:focus {
        border-color: var(--color-accent);
        outline: none;
    }
.eco-form-submit {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.eco-form-submit:hover {
  background-color: var(--color-accent-hover);
}

/* Modal Styles */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.contact-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
}

.contact-modal-content {
  position: relative;
  background: var(--white);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  z-index: 10;
  margin: 5% auto;
  border-radius: 8px;
}

.contact-modal-content h2 {
  margin-bottom: 20px;
  color: var(--color-accent-hover);
}

.contact-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  /*  font-size: 2rem;*/
  cursor: pointer;
  color: var(--color-accent-hover);
}

.contact-form .form-group {
  margin-bottom: 10px;
}

.contact-form label {
  color: var(--black);
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form .form-row .form-group {
  flex: 1;
  min-width: 45%;
}

.contact-submit-btn {
  background-color: var(--color-accent);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-submit-btn:hover {
  background-color: var(--color-accent-hover);
}

/* Footer Section  */
.timber-footer {
  background-color: var(--black);
  color: var(--color-text-light);
/*  padding-top: 40px;*/
}

.footer-custom-layout {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.4fr;
    gap: 40px;
    padding: 50px 20px 20px;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border-light);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-family: 'NexaRustSlab';
}

/* Logo Block */
.footer-logo-block .footer-site-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-social-icons a {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 10px;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}

.footer-social-icons a:hover {
  transform: scale(1.2);
  color: var(--color-accent-hover);
}

.footer-admin-login {
  width: 80%;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-admin-login:hover {
  background-color: var(--color-accent);
  color: var(--black);
}

/* Services */
.footer-services-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-services-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li i {
  font-size: 0.8rem;
  color:var(--color-accent);
  margin-right:10px;
}

.footer-services-columns ul li {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.footer-services-columns ul li:hover,
a:hover {
  color: var(--color-accent);
}

.footer-contact-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-block ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-light);
}

.footer-contact-block i {
  margin-right: 8px;
  color: var(--color-accent);
}

/* Map */
.footer-map-block iframe {
  width: 100%;
  height: 240px;
  border: none;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.footer-bottom>p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 5px 0;
}

.footer-bottom a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-accent-hover);
}

.footer-bottom a img {
  height: 35px;
  vertical-align: middle;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-accent);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px var(--color-shadow);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: none;
}

#backToTop:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.1);
}

/* About Page  */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-section-image {
  flex: 1 1 45%;
  position: relative;
  min-width: 300px;
  height: 500px;
}

.about-section-image img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  display: block;
  object-fit: cover;
}

.about-section-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--color-accent);
  color: #fff;
  font-weight: bold;
  padding: 20px;
  max-width: 260px;
  font-size: 1rem;
}

.about-section-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    font-family: "Bungee", sans-serif;
}

.about-section-title {
  /*  font-size: 2rem;*/
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-family: 'NexaRustSlab', sans-serif;
}

.about-section-desc {
  text-align: justify;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--black);
}

.about-section-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
}

.about-section-list li {
  margin: 12px 0;
  color: var(--black);
}

.about-section-list li span {
  margin-right: 10px;
  color: var(--color-accent-hover);
}

.about-section-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--white);
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.about-section-button:hover {
  background: var(--color-accent-hover);
  color: var(--white);
}

/* Stats */
.about-section-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

.stat-box {
  flex: 1;
}

    .stat-box strong {
        display: block;
        font-size: 5.8rem;
        color: rgba(0, 0, 0, 0.2);
        font-weight: 900;
        font-family: 'NexaRustSlab', sans-serif;
    }

.stat-box span {
  top: 100px;
  position: absolute;
  font-weight: bold;
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recent-projects-swiper-section {
  color: var(--black);
  font-family: var(--font-main);
  display:none;
}

.recent-projects-header {
  position: relative;
  margin-bottom: 2rem;
}

.section-label {
    color: var(--color-accent-hover);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-family: "Bungee", sans-serif;
}

.project-section-title {
  /*  font-size: 2rem;*/
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
  font-family: 'NexaRustSlab', sans-serif;
}

.section-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  max-width: 700px;
}

.swiper-nav-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 0.5rem;
}

.custom-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-background);
  background: transparent;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1.2rem;
}

.custom-nav-btn:hover {
  background: var(--color-accent-hover);
  color: var(--white);
  border: 1px solid var(--color-accent);
}

.recent-projects-swiper {
  width: 100%;
  overflow: hidden;
}

.project-slide {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.project-slide img {
  width: 100%;
  height: 280px;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 6px;
}

.project-slide:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  color: var(--color-text-light);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.project-slide:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
}

.project-overlay span {
  font-size: 0.875rem;
  color: var(--color-accent);
}

.dreams-banner-section {
  background-image: url('images/temp images/25.webp');
}

.dreams-banner-content {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.dreams-banner-text {
  color: var(--color-text-light, #f5f1ea);
  text-align:center;
    font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
  font-family: 'NexaRustSlab', sans-serif;
}

.dreams-banner-button {
  background-color: transparent;
  color: var(--color-text-light, #f5f1ea);
  border: 1px solid var(--color-text-light, #f5f1ea);
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  display:none;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.dreams-banner-button:hover {
  background-color: var(--white);
}

/* Company History Section */
.company-history {
  background: var(--black);
}

.history-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
}

.history-text h2 {
  /*  font-size: 2rem;*/
  color: var(--color-accent);
  margin-bottom: 10px;
  font-family: 'NexaRustSlab', sans-serif;
}

.history-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--white);
}

.history-timeline {
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
}

/* Director Section  */
.director-message-section {
  background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
  position: relative;
  overflow: hidden;
}

.director-message-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23b48a5a" opacity="0.03"/><circle cx="80" cy="80" r="1" fill="%23b48a5a" opacity="0.03"/><circle cx="40" cy="60" r="1" fill="%23b48a5a" opacity="0.03"/><circle cx="60" cy="40" r="1" fill="%23b48a5a" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.director-message-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.director-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.director-photo-frame {
  position: relative;
  width: 350px;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(180, 138, 90, 0.1), rgba(180, 138, 90, 0.05));
  border: 2px solid rgba(180, 138, 90, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-photo-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  border-color: var(--color-accent);
}

.director-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.director-photo-frame:hover .director-photo {
  transform: scale(1.05);
}

.director-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.director-photo-frame:hover .director-photo-overlay {
  opacity: 1;
}

.director-title-badge {
  background: var(--color-accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.director-decorative-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(180, 138, 90, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: drotate 30s linear infinite;
}

.director-decorative-ring::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.director-content {
  position: relative;
  z-index: 2;
}

.director-badge {
    display: inline-block;
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: "Bungee", sans-serif;
}

.director-heading {
  /*  font-size: 2rem;*/
  font-family: 'NexaRustSlab', sans-serif;
  color: var(--color-accent);
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
}

.director-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 2px;
}

.director-text {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.director-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
}

.director-signature {
  margin-top: 20px;
  font-style: italic;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-left: 50px;
}

.director-signature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.director-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding: 30px;
  background: rgba(180, 138, 90, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(180, 138, 90, 0.2);
  backdrop-filter: blur(10px);
}

.director-stat {
  text-align: center;
  padding: 20px;
  position: relative;
}

.director-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.director-stat-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.director-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.director-floating-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: dfloat 8s ease-in-out infinite;
}

.director-floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.director-floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.director-floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes drotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes dfloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.6;
  }
}

/* Mission Vision Section */
.mission-vision {
  background-image: url('images/temp images/30.webp');
  color: var(--color-text-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.mission-card p,
.vision-card p {
  font-size: 1rem;
  line-height: 1.7;
  color:var(--white);
}

.mission-card .icon,
.vision-card .icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Values Section */
.values-section {
  background: var(--white);
}

.values-header {
  text-align: center;
  margin-bottom: 2rem;
}

.values-header h2 {
  /*  font-size: 2rem;*/
  color: var(--color-accent);
  margin-bottom: 10px;
  font-family: var(--font-accent);
  font-family: 'NexaRustSlab', sans-serif;
}

.values-header p {
  font-size: 1rem;
  color: var(--black);
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.value-item {
  border: 1px solid var(--color-accent);
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0rem;
}

.value-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-weight: 700;
}

.value-item p {
  color: var(--black);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-header {
  text-align: center;
  margin-bottom: 2rem;
}

.team-header h2 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-family: var(--font-accent);
}

.team-header p {
  color: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: #f8f4e9;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-accent);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.team-member h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.team-member .role {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Sustainability Section */
.sustainability-section {
  background: var(--black);
  color: var(--color-text-light);
}

.sustainability-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.sustainability-text h2 {
  /*  font-size: 2rem;*/
  color: var(--color-accent);
  margin-bottom: 10px;
  font-family: 'NexaRustSlab', sans-serif;
}

.sustainability-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sustainability-features {
  list-style: none;
  padding: 0;
}

.sustainability-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sustainability-features li i {
  color: var(--color-accent);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.sustainability-image {
  height: 400px;
  text-align: center;
}

.sustainability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Certifications Section */
.certifications-section {
  background: var(--white);
}

.certifications-header {
  text-align: center;
  margin-bottom: 2rem;
}

.certifications-header h2 {
  /*  font-size: 2rem;*/
  color: var(--color-accent);
  margin-bottom: 10px;
  font-family: 'NexaRustSlab', sans-serif;
}

    .certifications-header p {
        color: var(--black);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.certification-item {
  background: var(--white);
  border: 1px solid var(--color-accent-hover);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.certification-item:hover {
  transform: translateY(-5px);
}

.cert-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.certification-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.certification-item p {
  color: var(--black);
  font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
  background: var(--color-accent);
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-accent);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: var(--white);
  color: var(--color-accent);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--color-text-light);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--color-accent);
}

/* Contact Us Page  */
.timber-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 20px; 
}

.timber-contact-details {
    background: linear-gradient(135deg, rgba(180, 138, 90, 0.05) 0%, rgba(245, 245, 245, 0.8) 100%);
    border: 1px solid rgba(180, 138, 90, 0.3);
    border-radius: 10px;
    padding: 2rem;
}

.timber-contact-details-title {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'NexaRustSlab', sans-serif;
}

.timber-contact-info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem;
  /* background: rgba(180, 138, 90, 0.08); */
  border-radius: 8px;
  border: 1px solid rgba(180, 138, 90, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timber-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.timber-contact-details-content {
  flex: 1;
}

.timber-contact-method-title {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timber-contact-method-value {
  color: var(--black);
  font-size: 1rem;
}

.timber-contact-method-description {
  color: var(--black);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Contact Form */
.timber-contact-form-container {
    background: linear-gradient(135deg, rgba(180, 138, 90, 0.05) 0%, rgba(245, 245, 245, 0.8) 100%);
    border: 1px solid rgba(180, 138, 90, 0.3);
    border-radius: 10px;
    padding: 2rem;
}

.timber-contact-form-title {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'NexaRustSlab', sans-serif;
}

.timber-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timber-form-group {
  display: flex;
  flex-direction: column;
}

.timber-form-label {
  color: var(--black);
  font-weight: 550;
/*  margin-bottom: 0.5rem;*/
}

.timber-form-input,
.timber-form-textarea,
.timber-form-select {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(180, 138, 90, 0.3);
  border-radius: 5px;
  padding: 7px;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timber-form-input:focus,
.timber-form-textarea:focus,
.timber-form-select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.timber-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.timber-form-input::placeholder,
.timber-form-textarea::placeholder {
  color: rgba(45, 45, 45, 0.5);
}

.timber-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.timber-submit-btn {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* margin-top: 1rem; */
}

.timber-submit-btn:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
}

.timber-submit-btn:active {
  transform: translateY(0);
}
.contact-icon{
    width:100%;
    justify-content:center;
    align-items:center;
    display:flex;
    gap:10px;
}
/* Business Hours */
.timber-business-hours {
    padding: 1.5rem;
    /* background: rgba(180, 138, 90, 0.08); */
    border-radius: 8px;
    border: 1px solid rgba(180, 138, 90, 0.3);
}

.timber-hours-title {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.timber-hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(180, 138, 90, 0.2);
}

.timber-hours-item:last-child {
  border-bottom: none;
}

.timber-hours-day {
  color: var(--black);
}

.timber-hours-time {
  color: var(--color-accent);
  font-weight: 500;
}

/* Blog Page  */
.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.post-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--color-accent);
  height: fit-content;
}

.post-card:hover {
  transform: translateY(-1px);
}

.post-card.hidden {
  display: none;
}

.post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-category {
  background: var(--color-accent);
  color: var(--white);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.3;
}

.post-excerpt {
  color: var(--black);
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.5;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--color-accent);
  border-top: 1px solid var(--color-border-light);
  padding-top: 10px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 5px;
  padding: 20px;
  border: 1px solid var(--color-accent);
}

.widget-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  font-size: 14px;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
}

.category-list {
  list-style: none;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.category-item:hover {
  background-color: #f5f5f5;
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
}

.category-item:last-child {
  border-bottom: none;
}

.category-item.active {
  background-color: var(--color-accent);
  color: var(--black);
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
}

.category-name {
  color: var(--black);
  font-weight: 500;
}

.category-item.active .category-name {
  color: var(--white);
}

.category-count {
  background: var(--color-accent);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.category-item.active .category-count {
  background: var(--white);
  color: var(--color-accent);
}

.recent-post {
  display: flex;
  gap: 15px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.recent-post:hover {
  background-color: #f5f5f5;
  border-radius: 6px;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.recent-post-date {
  font-size: 12px;
  color: #6b6969;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f5f5f5;
  color: var(--black);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background: var(--color-accent);
  color: var(--white);
}

.tag.active {
  background: var(--color-accent);
  color: var(--white);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  grid-column: 1 / -1;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: var(--white);
  color: var(--color-text-light);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--color-shadow);
}

.page-btn:hover {
  background: var(--color-accent);
  color: var(--white);
}

.page-btn.active {
  background: var(--color-accent);
  color: var(--white);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 16px;
}

.clear-filters {
  background: var(--color-accent);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.clear-filters:hover {
  background: var(--color-accent-hover);
}

.blog-detail-header {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-detail {
  color: var(--black);
}

.blog-detail-category {
  background-color: var(--color-accent);
  padding: 5px 10px;
  color: var(--white);
  width: fit-content;
  border-radius: 3px;
}

.blog-detail-meta {
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* Career Page  */
.sk-career-main h1,
.sk-section-title {
  margin-bottom: 20px;
  font-weight: 700;
  text-align:center;
}

.sk-career-title,
.sk-section-title {
  /*  font-size: 2rem;*/
  font-family: 'NexaRustSlab', sans-serif;
  color: var(--color-accent);
}

.sk-btn-accent {
  background: var(--color-accent);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: none;
  transition: background 0.3s ease;
}

.sk-btn-accent:hover {
  background: var(--color-accent-hover);
  cursor: pointer;
  color: var(--white);
}

.sk-section-black {
  background: var(--black);
  color: var(--white);
}

.sk-section-white {
  background: var(--white);
  color: var(--black);
}
.sk-career-openings{
    display:none;
}
.sk-career-subtitle {
    /*  margin-bottom: 20px;*/
    font-size: 1rem;
    text-align: center;
}

.sk-job-card {
  border: 1px solid var(--color-border-light);
  padding: 25px;
  margin-bottom: 20px;
  background: #111111;
  border-radius: 6px;
  color: var(--white);
}

.sk-job-title {
  margin-bottom: 10px;
}

.sk-job-meta i {
  margin-right: 5px;
  color: var(--color-accent);
}

.career-section {
    background-color: #f4f6f8;
}

.career-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: auto;
}

.career-form-box {
    flex: 1 1 60%;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.career-title {
    color:var(--color-accent);
    font-size: 25px;
    margin-bottom: 20px;
}

.career-form {
    width: 100%;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.career-form-group {
    display: flex;
    flex-direction: column;
}

.career-full-width {
    grid-column: span 2;
}

.career-input,
.career-textarea,
.career-input-file {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size:0.9rem;
    background-color: #fdfdfd;
    color: #333;
    transition: border 0.2s ease;
}

    .career-input:focus,
    .career-textarea:focus {
        border-color: var(--color-accent);
        outline: none;
    }

.career-textarea {
    resize: vertical;
    min-height: 100px;
}

.career-input-file {
    background-color: #fff;
}

.career-submit-btn {
    padding: 14px 24px;
    background-color:var(--color-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .career-submit-btn:hover {
        background-color:var(--color-accent-hover);
    }

.career-error {
    color: red;
    font-size: 0.85rem;
    margin-top: 5px;
}
.career-error-summary {
    background-color: #ffe9e9;
    border: 1px solid #d00;
    color: #a00;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    list-style: square inside;
}

.career-image-box {
    flex: 1 1 35%;
    text-align: center;
}

.career-image {
    width: 100%;
    max-width: 760px;
    border-radius: 12px;
}

/* Gallery Page  */
.sk-gallery-section {
    background-color: var(--white); /* or use .sk-section-black override */
}

.sk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Card wrapper */
.sk-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border:2px solid var(--color-accent);
}
.sk-gallery-card-i {
    height:300px;
    object-fit:cover;
    width:300px;
}
/* Image */
.sk-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* Image hover zoom */
.sk-gallery-card:hover .sk-gallery-img {
    transform: scale(1.05);
}

/* Overlay with icon */
.sk-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.sk-gallery-card:hover .sk-gallery-overlay {
    opacity: 1;
}

.sk-gallery-overlay i {
    color: white;
      font-size: 2rem;
}
.sk-gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
}

.sk-gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-in-out;
}

.sk-gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

/* Navigation arrows */
.sk-gallery-prev,
.sk-gallery-next {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 40px;
    padding: 16px;
    cursor: pointer;
    border: none;
    background: none;
    transform: translateY(-50%);
    z-index: 10000;
}

.sk-gallery-prev {
    left: 20px;
}

.sk-gallery-next {
    right: 20px;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Products Page  */
.product-page-section {
    background-color: var(--white);
}

.product-grid-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sidebar */
.product-sidebar {
/*    flex: 1;*/
    min-width: 260px;
    max-width: 300px;
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--color-accent);
    height: fit-content;
    position: sticky;
    top: 100px;
    border-radius:5px;
    display:none;
}

.sidebar-search {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--color-accent);
    border-radius: 5px;
    margin-bottom: 25px;    
}

.sidebar-section {
    margin-bottom: 30px;
}

    .sidebar-section h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--black);
    }

    .sidebar-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-section li {
        margin-bottom: 12px;
    }

    .sidebar-section a {
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .sidebar-section a:hover,
        .sidebar-section a.active {
            color: var(--color-accent);
            font-weight: 600;
        }

/* Product Wrapper */
.product-wrapper {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}
.product-div {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-accent);
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
    position: relative;
}

/* Image Section - More Visible */
.product-img {
    width: 100%;
    height: 60%;
    overflow: hidden;
    position: relative;
}

    .product-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 0%, rgba(139, 69, 19, 0.05) 100%);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.product-div:hover .product-img::before {
    opacity: 1;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-div:hover .product-img img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    width: 100%;
    height: 40%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

    .product-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
        height: 3px;
        background: linear-gradient(90deg, var(--color-accent), #DAA520, var(--color-accent));
        border-radius: 2px;
    }

    .product-content h2 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--black);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-content p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 10px;
        flex-grow: 1;
    }

/* Professional Enquire Button */
.product-section-btn {
    background: linear-gradient(45deg, var(--color-accent), var(--color-accent-hover));
    color: var(--white);
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

    .product-section-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .product-section-btn:hover::before {
        left: 100%;
    }

    .product-section-btn:hover {
        background: var(--color-accent-hover);
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    }

    .product-section-btn:active {
        transform: translateY(0);
    }

/* Material Badge */
.material-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent-hover);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
    z-index: 2;
}
/* Base wrapper for Summernote content */
.summernote-content {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    color: #2c2c2c;
    line-height: 1.7;
    word-break: break-word;
/*    padding: 1rem 0;*/
}

    /* Paragraphs */
    .summernote-content p {
        margin: 0.8rem 0;
    }

    /* Headings */
    .summernote-content h1,
    .summernote-content h2,
    .summernote-content h3,
    .summernote-content h4 {
        font-weight: 600;
        color: #1a1a1a;
        margin: 1.5rem 0 0.8rem;
        line-height: 1.3;
    }

    .summernote-content h1 {
        font-size: 2rem;
    }

    .summernote-content h2 {
        font-size: 1.6rem;
    }

    .summernote-content h3 {
        font-size: 1.3rem;
    }

    .summernote-content h4 {
        font-size: 1.15rem;
    }

    /* Lists */
    .summernote-content ul,
    .summernote-content ol {
        margin: 0.8rem 0 0.8rem 1.2rem;
        padding-left: 1rem;
    }

    .summernote-content li {
        margin-bottom: 0.4rem;
    }

    /* Blockquote */
    .summernote-content blockquote {
        border-left: 4px solid #ccc;
        padding-left: 1rem;
        margin: 1.2rem 0;
        font-style: italic;
        color: #555;
        background-color: #f9f9f9;
        padding: 0.8rem;
        border-radius: 4px;
    }

    /* Links */
    .summernote-content a {
        color: #007bff;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

        .summernote-content a:hover {
            color: #0056b3;
            text-decoration: none;
        }

    /* Images */
    .summernote-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1rem auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* Tables */
    .summernote-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 0.95rem;
    }

    .summernote-content table,
    .summernote-content th,
    .summernote-content td {
        border: 1px solid #ddd;
    }

    .summernote-content th,
    .summernote-content td {
        padding: 0.6rem;
        text-align: left;
        background-color: #fff;
    }

    .summernote-content thead {
        background-color: #f1f1f1;
    }

    /* Code blocks */
    .summernote-content pre {
        background: #f4f4f4;
        padding: 0.9rem;
        overflow-x: auto;
        border-radius: 4px;
        margin-bottom: 1.2rem;
    }

    /* Horizontal line */
    .summernote-content hr {
        margin: 1.5rem 0;
        border: none;
        border-top: 1px solid #ccc;
    }


/* === HAMBURGER MENU === */
.hamburger {
  font-size: 1.5rem;
  display: none;
}

@media (max-width: 1200px) {
  .timber-grid-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .timber-central-image {
    order: -1;
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
  }

  .timber-features-left,
  .timber-features-right {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
    .logo img{
        max-height:90px !important;
    }
  .hamburger {
    display: block;
  }

  .s-d-non {
    display: none;
  }

  .quote-button,
  .video-title,
  .contact-section-btn,
  .about-section-button {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-background);
    padding: 1rem 2rem;
    width: 200px;
    z-index: 1001;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav.show {
    display: block;
  }

  .breadcrumb-hero {
    height: 250px;
  }

  .contact-section-subtitle {
    text-align: center;
    width: 100%;
  }

  .section-title,
  .testimonial-heading,
  .blog-title,
  .contact-section-title,
  .about-section-title,
  .history-text h2,
  .values-header h2,
  .director-heading,
  .mission-card h3,
  .vision-card h3,
  .certifications-header h2,
  .sk-career-main h1,
  .sk-section-title,
  .timber-contact-details-title,
  .timber-contact-form-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .mission-card,
  .vision-card {
    padding: 1rem;
  }

  .project-section-title,
  .sustainability-text h2 {
    font-size: 1.2rem;
  }

  .container {
    padding: 30px 10px;
  }

  .sustainability-image {
    height: 300px;
  }

  .about-section-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-section-stats {
    gap: 20px;
    margin-top: 0;
    text-align: center;
    padding: 10px;
    width: 100%;
  }

  .stat-box strong {
    font-size: 3rem;
  }

  .stat-box span {
    top: 40px;
    font-size: 12px;
    text-align: center;
  }

  .p-desc,
  .w-desc,
  .abt-desc,
  .blog-subtitle,
  .history-text p,
  .sk-career-subtitle {
    text-align: justify;
  }

  .video-frame {
    height: 25vh;
  }

  .contact-section {
    height: auto;
  }

  .dreams-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .director-message-container {
    display: flex;
    flex-direction: column;
  }

  .dreams-banner-text {
    font-size: 1rem;
  }

  .history-content,
  .sustainability-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-vision-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .timber-section-title {
    font-size: 1.2rem;
  }

  .timber-section-subtitle::before,
  .timber-section-subtitle::after {
    width: 40px;
  }

  .timber-section-subtitle::before {
    left: -60px;
  }

  .timber-section-subtitle::after {
    right: -60px;
  }

  .timber-feature-card {
    padding: 24px;
  }

  .timber-central-image {
    height: 300px;
  }

  .timber-grid-layout {
    gap: 20px;
  }

  .footer-custom-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: start;
  }

  .footer-services-columns {
    flex-direction: column;
    align-items: start;
  }

  .footer-admin-login {
    margin-top: 15px;
  }

  .director-photo-frame {
    width: 90%;
    height: 350px;
  }

  .director-text {
    font-size: 16px;
    text-align: justify;
    padding-left: 0;
  }

  .director-badge {
    text-align: center;
    width: 100%;
  }

  .timber-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timber-contact-title {
    /*  font-size: 2rem;*/
  }

  .timber-form-row {
    grid-template-columns: 1fr;
  }

  .timber-contact-details,
  .timber-contact-form-container {
    padding: 1rem;
  }

  .timber-contact-info-card {
    padding:1rem;
  }

  .timber-contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-posts {
    grid-template-columns: 1fr;
  }

  .post-title {
    font-size: 16px;
  }

    .career-container {
        flex-direction: column;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-full-width {
        grid-column: span 1;
    }

  .sk-gallery-modal-content {
    max-width: 100%;
  }

  .sk-btn-accent {
    width: 100%;
    text-align: center;
  }

  .sk-form-image {
    height: auto;
  }

  .sk-form-left {
    padding: 20px 10px;
    width: 100%;
  }
    .summernote-content {
        font-size: 1rem;
    }

        .summernote-content h1 {
            font-size: 1.6rem;
        }

        .summernote-content h2 {
            font-size: 1.4rem;
        }

        .summernote-content h3 {
            font-size: 1.15rem;
        }
}

/* Optional: Mobile adjustments */
@media (max-width: 600px) {
  .play-icon {
    top: 53%;
    font-size: 2.5rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-indicator span {
    font-size: 0.75rem;
  }

  .scroll-indicator .line {
    height: 30px;
  }
}

@media (max-width: 480px) {
    .phone a {
        font-family: "Nunito", sans-serif;
        font-weight: 600;
        font-size: 1.2rem;
    }
  .hero-section {
    height: 95vh;
  }
    .hero-content h1
  {
        font-size:1rem;
    }
    .hero-content p {
        font-size: 13px;
        line-height: 1.3;
        padding:0 10px;
    }
    .p-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 20px;
    }
    .product-div {
        height: 445px;
    }

  .timber-section-subtitle::before,
  .timber-section-subtitle::after {
    display: none;
  }

  .director-decorative-ring {
    width: 250px;
    height: 250px;
  }

  .eco-form-box {
    padding: 15px;
  }

  .eco-form-row {
    gap: 15px;
  }
}